Decline Inbound Request
The DeclineTchTransaction API enables to deline an inbound RTP transaction.
Method: POST
{{URL}}/PLMASTER/jsonrpc
Headers
Name | Value |
---|---|
Content-Type | application/json |
Example
Payload Parameters
Parameter | Description |
---|---|
ID Mandatory | String Unique ID of the transaction Example: " 4365682" |
reason Mandatory | String Reason for declining the transaction Example: "ated" |
- cURL
- C#
- Go
- NodeJs
curl --location --request GET 'https://plus.netxd.com/PLMASTER/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"method":"TransactionService.DeclineTchTransaction","id":"1","params":{"api":{"credential":"Basic eWFzaEBuZXR4ZC5jb206MjRmMTJiYjE3MTJmNDI4NWFiM2M4YTE2OThkNTRhN2I=","signature":"MEYCIQCpZS38DSEfuW2qOjkNKxjC+oRt0ZY4TjYJBy53SjUfQQIhAJLTPDQRU1L/h8kde/kIGfX+YlOxoPKbhRaP3dnxb4ag","apiKey":"24f12bb1712f4285ab3c8a1698d54a7b","keyId":"167234"},"payload":{"ID":"4365682","reason":"ated"}}}'
var options = new RestClientOptions("https://plus.netxd.com")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/PLMASTER/jsonrpc", Method.Get);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""method"": ""TransactionService.DeclineTchTransaction"",
" + "\n" +
@" ""id"": ""1"",
" + "\n" +
@" ""params"": {
" + "\n" +
@" ""api"": {
" + "\n" +
@" ""credential"": ""Basic eWFzaEBuZXR4ZC5jb206MjRmMTJiYjE3MTJmNDI4NWFiM2M4YTE2OThkNTRhN2I="",
" + "\n" +
@" ""signature"": ""MEYCIQCpZS38DSEfuW2qOjkNKxjC+oRt0ZY4TjYJBy53SjUfQQIhAJLTPDQRU1L/h8kde/kIGfX+YlOxoPKbhRaP3dnxb4ag"",
" + "\n" +
@" ""apiKey"": ""24f12bb1712f4285ab3c8a1698d54a7b"",
" + "\n" +
@" ""keyId"": ""167234""
" + "\n" +
@" },
" + "\n" +
@" ""payload"": {
" + "\n" +
@" ""ID"": ""4365682"",
" + "\n" +
@" ""reason"": ""ated""
" + "\n" +
@" }
" + "\n" +
@" }
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://plus.netxd.com/PLMASTER/jsonrpc"
method := "GET"
payload := strings.NewReader(`{`+"
"+`
"method": "TransactionService.DeclineTchTransaction",`+"
"+`
"id": "1",`+"
"+`
"params": {`+"
"+`
"api": {`+"
"+`
"credential": "Basic eWFzaEBuZXR4ZC5jb206MjRmMTJiYjE3MTJmNDI4NWFiM2M4YTE2OThkNTRhN2I=",`+"
"+`
"signature": "MEYCIQCpZS38DSEfuW2qOjkNKxjC+oRt0ZY4TjYJBy53SjUfQQIhAJLTPDQRU1L/h8kde/kIGfX+YlOxoPKbhRaP3dnxb4ag",`+"
"+`
"apiKey": "24f12bb1712f4285ab3c8a1698d54a7b",`+"
"+`
"keyId": "167234"`+"
"+`
},`+"
"+`
"payload": {`+"
"+`
"ID": "4365682",`+"
"+`
"reason": "ated"`+"
"+`
}`+"
"+`
}`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'GET',
'hostname': 'plus.netxd.com',
'path': '/PLMASTER/jsonrpc',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"method": "TransactionService.DeclineTchTransaction",
"id": "1",
"params": {
"api": {
"credential": "Basic eWFzaEBuZXR4ZC5jb206MjRmMTJiYjE3MTJmNDI4NWFiM2M4YTE2OThkNTRhN2I=",
"signature": "MEYCIQCpZS38DSEfuW2qOjkNKxjC+oRt0ZY4TjYJBy53SjUfQQIhAJLTPDQRU1L/h8kde/kIGfX+YlOxoPKbhRaP3dnxb4ag",
"apiKey": "24f12bb1712f4285ab3c8a1698d54a7b",
"keyId": "167234"
},
"payload": {
"ID": "4365682",
"reason": "ated"
}
}
});
req.write(postData);
req.end();
Request Body
{
"method": "TransactionService.DeclineTchTransaction",
"id": "1",
"params": {
"api": {
"credential": "Basic eWFzaEBuZXR4ZC5jb206MjRmMTJiYjE3MTJmNDI4NWFiM2M4YTE2OThkNTRhN2I=",
"signature": "MEYCIQCpZS38DSEfuW2qOjkNKxjC+oRt0ZY4TjYJBy53SjUfQQIhAJLTPDQRU1L/h8kde/kIGfX+YlOxoPKbhRaP3dnxb4ag",
"apiKey": "24f12bb1712f4285ab3c8a1698d54a7b",
"keyId": "167234"
},
"payload": {
"ID": "4365682",
"reason": "ated"
}
}
}
Response: 200
Response Parameters
Parameter | Description |
---|---|
id | String Unique ID of the Request Example: " 1" |
result | Object |
message | String Message that indicates whether the transaction is declined or not Example: " Transaction Declined Successfully" |
jsonrpc | String JSON RPC Version Example: " 2.0" |
Response Body
{
"id": "1",
"result": {
"message": "Transaction Declined Successfully"
},
"jsonrpc": "2.0"
}